Fix args to g_type_init ().
authorOwen Taylor <otaylor@redhat.com>
Fri, 29 Jun 2001 02:53:01 +0000 (02:53 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Fri, 29 Jun 2001 02:53:01 +0000 (02:53 +0000)
Thu Jun 28 21:54:19 2001  Owen Taylor  <otaylor@redhat.com>

* make-inline-pixbuf.c test-gdk-pixbuf.c test-loaders.c
gdk-pixbuf-csource.c: Fix args to g_type_init ().

gdk-pixbuf/ChangeLog
gdk-pixbuf/gdk-pixbuf-csource.c
gdk-pixbuf/make-inline-pixbuf.c
gdk-pixbuf/test-gdk-pixbuf.c
gdk-pixbuf/test-loaders.c

index 0273e7ed916bad5e0de7c105cc795a28c1865f9c..12f3908eaaf974e07037941a1af292143ad0ed24 100644 (file)
@@ -1,3 +1,8 @@
+Thu Jun 28 21:54:19 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * make-inline-pixbuf.c test-gdk-pixbuf.c test-loaders.c
+       gdk-pixbuf-csource.c: Fix args to g_type_init ().
+
 2001-06-28  Havoc Pennington  <hp@pobox.com>
 
        * gdk-pixdata.c: <string.h>
index 7f9874aa8193bc787e99985f592f48163ba3b21c..6f931883928f92aa9d86072c57c1b480e9fdabcf 100644 (file)
@@ -76,7 +76,7 @@ main (int   argc,
   GError *error = NULL;
 
   /* initialize glib/GdkPixbuf */
-  g_type_init (0);
+  g_type_init ();
 
   /* parse args and do fast exits */
   parse_args (&argc, &argv);
index 65e1ed6f2dd70f8cc0bcd2d436f4e620dbc45366..fbf1102335fb8f3427a9e7bffea810f1516c6628 100644 (file)
@@ -153,7 +153,7 @@ main (int argc, char **argv)
   gchar *outfilename;
   int i;
   
-  g_type_init (0);
+  g_type_init ();
   
   
   if (argc < 4)
index 2631a024515e32a8375c52060f0ae2970cb6735f..5b52128b759f7fbf86605ebfe64f26b1d856177d 100644 (file)
@@ -230,7 +230,7 @@ main (int argc, char **argv)
 
        result = EXIT_SUCCESS;
 
-       g_type_init (G_TYPE_DEBUG_NONE);
+       g_type_init ();
        
        /* Run some tests. */
        if (!simple_composite_test ()) {
index a1eebc1ade723b4ee2b45d9295036d3fc8c8538d..a3de2584d2904a7301d659a06cc21142b479d38c 100644 (file)
@@ -370,7 +370,7 @@ main (int argc, char **argv)
     }
   g_random_set_seed (seed);
   
-  g_type_init (G_TYPE_DEBUG_NONE);
+  g_type_init ();
   g_log_set_fatal_mask (NULL, G_LOG_LEVEL_WARNING | G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL);
   
   putenv ("GDK_PIXBUF_MODULEDIR="BUILT_MODULES_DIR);